home *** CD-ROM | disk | FTP | other *** search
/ Final Fantasy the Spirits Within Cardz / Final Fantasy the Spirits Within CD Cardz - Disc 2: Gray Edwards.iso / pc / assets / gray-puzzle.dcr / 00076_playbutton.ls < prev    next >
Encoding:
Text File  |  2001-07-21  |  593 b   |  33 lines

  1. on mouseEnter
  2.   set the blend of sprite 24 to 100
  3.   set the blend of sprite 25 to 100
  4.   cursor(280)
  5. end
  6.  
  7. on mouseLeave
  8.   set the blend of sprite 24 to 70
  9.   set the blend of sprite 25 to 70
  10.   cursor(-1)
  11. end
  12.  
  13. on mouseUp
  14.   i = 23
  15.   repeat while i <= 25
  16.     set the locH of sprite i to 2000
  17.     i = 1 + i
  18.   end repeat
  19.   set the locH of sprite 26 to 322
  20.   set the locH of sprite 27 to 322
  21.   set the locH of sprite 28 to 250
  22.   i = 31
  23.   repeat while i <= 45
  24.     sprite(i).visible = 1
  25.     i = 1 + i
  26.   end repeat
  27.   j = 47
  28.   repeat while j <= 48
  29.     sprite(j).visible = 0
  30.     j = 1 + j
  31.   end repeat
  32. end
  33.